Students should know Broadcast, Variables and Operators. They should also know the meaning of the English word Clone.
Exercises
Exercise:1
Use the monkey - banana game developed in lessons 20 and 21. Change it so that multiple bananas will be falling but you should use only one Sprite for all the bananas. When the monkey touches the banana the score will increase. If the score reaches 20 the backdrop should change.
Teachers should teach the students about the advantages of clones. Clone control is used to reduce the number of sprites in the code. Less maintenance, less code etc. Like MyBlocks this also brings in Abstraction but at an even higher level.
Teachers should help the students how to add new costumes to the same sprite(A girl sprite can have the fairy costume, witch, tree, etc..)
When cloning, ask the students to observe that each clone can have its own location (i.e. x, y position), its own motion, its own costume and most importantly be executing its own different code.